.install-banner {
    position: absolute;
    left: 0;
    width: 35%;
    max-width: 320px;
    background-color: #0078d4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 999;
    padding: 0 15px;
}

.install-banner-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.LoginVisual {
    width: 100%;
    max-width: 100%;
    height: auto;
    text-align: center;
}

.CoverImg {
    width: 100%;
	height: 200px;
    object-fit: cover;
}

.ImgText {
    width: 100vw;
    max-width: 100%;
    text-align: center;
    position: relative;
}

.LoginForm {
    width: 90%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
    position: relative;
}

.FieldLabel {
    font-weight: 500;
}

.FieldInput {
    border: 2px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

.EmailNote {
    color: #666;
}

.RememberCheckbox {
    display: flex;
    align-items: center;
}

.RememberCheckbox input[type="checkbox"] {
    display: block;
}

.login-form-flex {
    display: flex;
    align-items: center;
	justify-content: space-between;
    gap: 10px;
}

.install-banner {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

@media (min-width: 430px) {

    .CoverImg {
        border-radius: 25px 25px 0px 0px;
    }
}

@media (min-width: 0px) {
    .install-banner {
        top: 35px;
        height: 40px;
    }

    .install-banner-link {
        font-size: 0.9em;
    }

    .LoginForm {
        top: -80px;
    }
    
    .ImgText {
        width: 100%;
        max-width: 430px;
        top: -100px;
    }
    
    .FieldLabel {
        font-size: 18px;
    }

    .FieldInput {
        padding: 14px;
        font-size: 20px;
        border-radius: 8px;
    }

    .EmailNote {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .RememberCheckbox {
        font-size: 15px;
        margin-top: 10px;
    }
    
    .RememberCheckbox input[type="checkbox"] {
        transform: scale(1.2);
        margin-right: 10px;
    }

    .error-message {
        text-align: center;
		display: block;
    }

    .loginbtn {
        margin-top: 15px;
    }
}